* lisp/calc/calc-trail.el (calc-trail-kill): Remove the check
preventing the removal of the first trail line, which is no
longer relevant since commit
8e1376a3912. (Bug#77816)
(interactive "p")
(calc-with-trail-buffer
(let ((buffer-read-only nil))
- (save-restriction
- (narrow-to-region ; don't delete "Emacs Trail" header
- (save-excursion
- (goto-char (point-min))
- (forward-line 1)
- (point))
- (point-max))
- (kill-line n)))
+ (kill-line n))
(calc-trail-here)))
(provide 'calc-trail)